Update Turkish translation
Origin: 3.24.39, commit:
379512c092dc2bc904ebd6aaa3b84d7234c31034
Gbp-Pq: Name Update-Turkish-translation.patch
Make sure that the charcode is signless
1. The data with type of char is signed by default.
2. The byte value of UTF-8 is signless by default.
3. So, if a UTF-8 charcode is stored in a char array, we should cast the
type of its value from char to unsigned char.
Origin: 3.24.39, commit:
6dc75b46cc9afe1c98b7ba72a9b1a275c723ea42
Gbp-Pq: Name Make-sure-that-the-charcode-is-signless.patch
Use correct stat struct for ftw()
check_dir_mtime() is called by ftw() and is given
the real stat struct, not its glib version (which may
or may not be the same as "struct stat").
This is irrelevant for MSVC (it has no ftw()) and
works correctly for MinGW-w64 (which declares stat
structures correctly). If mingw.org complains, add
a special ifdef for it later.
Origin: upstream, 3.24.39, commit:
7e17693cced0db855bfe0997f26633ca8bdd48cc
Gbp-Pq: Name Use-correct-stat-struct-for-ftw.patch